home *** CD-ROM | disk | FTP | other *** search
- /* System-dependent definitions of various files, spool directories, etc */
-
- /* mac_files.h
- * this include file just defines the global filename storage areas that files.c
- * defines for the Macintosh version. Because the Mac needs these names to be
- * dynamic (since we determine the final absolute paths only at application launch),
- * these are handled differently from the other versions of the KA9Q code.
- *
- * NOTE: These are only the global path names. There is use of path names that will
- * be session related (like FTP stuff). Those strings are stored in other dynamic
- * structures since they are not global to NET.
- */
- extern char mailspool[256]; /* incoming mail folder */
- extern char mailqdir[256]; /* outgoing mail folder */
- extern char alias[256]; /* the alias file */
- extern char applroot[256]; /* root folder, where NET was launched from */
- extern char temppath[256]; /* temp file folder */
- extern char dirbm[256]; /* dir temp file */
-
- #define MAILSPOOL "spool:mail:"
- #define MAILQDIR "spool:mqueue:"
- #define ROUTEQDIR "spool:rqueue:"
- #define ALIAS "alias"
- #define TEMPPATH "spool:"
- #define DIRBM "spool:dirbm.temp"
-
-
-